/* Google Font Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins" , sans-serif;;
}
html{
  overflow-y: hidden;
}
body{
  background-color: #11101D;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  margin:0;
  padding:0;

}
#tag{
  color: rgb(0, 193, 255);
  position: relative;
  top:42%;
  left: -560%;
  white-space: nowrap; 
}
/*resolution radio*/
.radio-inputs {
  position: relative;
  border-radius: 0.25rem;
  background-color:  rgba(0, 193, 255, 0.2);
  box-sizing: border-box;
  font-size: 14px;
  width: 100%;
  transition: all 0.85s ease-in;
  display: flex;
  justify-content: flex-end; 
  margin-right:40px;

}


.radio-inputs .radio input {
  display: none;
}

.radio-inputs .radio .name {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 0.7rem;
  border-top-right-radius: 0.7rem;
  border: none;
  color: #ffffff;
  padding: 0.5rem 0.8rem;
  position: relative;
  margin-right:20px;
  
  
}

.radio-inputs .radio input:checked + .name {
  background-color:   #11101D;
  font-weight: 600;
  border-radius: 0.4rem;
}
.radio-inputs .radio input + .name:hover {
 color: rgba(0, 193, 255,1)
}


.radio-inputs .radio input:checked + .name::after,
.radio-inputs .radio input:checked + .name::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color:  rgba(10, 47, 68, 0.8);
  bottom: 0;
}

.radio-inputs .radio input:checked + .name::after {
  right: -10px;
  border-bottom-left-radius: 300px;
  box-shadow: -3px 3px 0px 3px  #11101D;
}
.radio-inputs .radio input:checked + .name::before {
  left: -10px;
  border-bottom-right-radius: 300px;
  box-shadow: 3px 3px 0px 3px  #11101D;
}
/* see  more and less buttons */
.glow-on-hover {
  width: 220px;
  height: 50px;
  border: none;
  margin-left: 10px;
  outline: none;
  color: #fff;
  background: rgb(0, 0, 0);
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
}

.glow-on-hover:before {
  content: '';
  background: linear-gradient(45deg,  #00ffd5, #002bff, #7a00ff, #ff00c8);
  position: absolute;
  top: -2px;
  left:-2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity .3s ease-in-out;
  border-radius: 10px;
}
#stored{
  opacity:0;
}
.glow-on-hover:active {
  color: #000
}

.glow-on-hover:active:after {
  background: transparent;
}

.glow-on-hover:hover:before {
  opacity: 1;
}

.glow-on-hover:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 193, 255,0.7);
  left: 0;
  top: 0;
  border-radius: 10px;
}

@keyframes glowing {
  0% { background-position: 0 0; }
  50% { background-position: 400% 0; }
  100% { background-position: 0 0; }
}
/* custom scroll bar */
::-webkit-scrollbar {
  width: 10px;
  
}
::-webkit-scrollbar-track {
  background:aqua;
}
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 12px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.sidebar{
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 78px;
  background: #11101D;
  padding: 6px 14px;
  z-index: 99;
  transition: all 0.5s ease;
}
.sidebar.open{
  width: 250px;
}
.sidebar .logo-details{
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
}
.sidebar .logo-details .icon{
  opacity: 0;
  transition: all 0.5s ease;
}
.sidebar .logo-details .logo_name{
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.5s ease;
}
.sidebar.open .logo-details .icon,
.sidebar.open .logo-details .logo_name{
  opacity: 1;
  position: relative;
  left:25px;
}
.sidebar .logo-details #btn{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 22px;
  transition: all 0.4s ease;
  font-size: 23px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;
}
.sidebar.open .logo-details #btn{
  text-align: right;
}
.sidebar i{
  color: #fff;
  height: 60px;
  min-width: 50px;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
}
.sidebar .nav-list{
  margin-top: 20px;
  height: 100%;
}
.sidebar li{
  position: relative;
  margin: 4px 0;
  list-style: none;
}
.sidebar li .tooltip{
  position: absolute;
  top: -20px;
  left: calc(100% + 15px);
  z-index: 3;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: 0s;
}
.sidebar li:hover .tooltip{
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
  top: 50%;
  transform: translateY(-50%);
}
.sidebar.open li .tooltip{
  display: none;
}
.sidebar input{
  font-size: 15px;
  color: #FFF;
  font-weight: 400;
  outline: none;
  height: 50px;
  width: 100%;
  width: 50px;
  border: none;
  border-radius: 50px;
  transition: all 0.5s ease;
  background: #1d1b31;
}
.sidebar.open input{
  padding: 0 20px 0 50px;
  width: 100%;
}
.sidebar .bx-search{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 22px;
  border-radius: 50px;
  background: #1d1b31;
  color: #FFF;
}
.sidebar.open .bx-search:hover{
  background: #1d1b31;
  color: #FFF;
  border-radius: 50px;
}
.sidebar .bx-search:hover{
  background: #FFF;
  color: #11101d;
}
.sidebar li a{
  display: flex;
  height: 100%;
  width: 100%;
  border-radius:50px;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s ease;
  background:#11101d;
}
.sidebar li a:hover{
  background: #FFF;
}
.sidebar li a .links_name{
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}
.sidebar.open li a .links_name{
  opacity: 1;
  pointer-events: auto;
}
.sidebar li a:hover .links_name,
.sidebar li a:hover i{
  transition: all 0.5s ease;
  color: #11101D;
}
.sidebar li i{
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  border-radius: 12px;
}
.sidebar li.profile{
  position: fixed;
  height: 60px;
  width: 78px;
  left: 0;
  bottom: -8px;
  padding: 10px 14px;
  background: #1d1b31;
  transition: all 0.5s ease;
  overflow: hidden;
}
#doudoutag{
  text-decoration: none;
  color: white;
}
.sidebar .logo-details .logo1{
    position :relative;
    top:55px;
    left:0px;
    height: 100px;
    transition:all 0.5s ease;
    opacity:1;
  
  }
  .sidebar.open .logo-details .logo1{
    position :relative;
    top:25px;
    left:25px;
    height: 100px;
    transition:all 0.5s ease;
    opacity:1;
   
  }
  .sidebar li.profile{
    opacity: 0;
  }
.sidebar.open li.profile{
  width: 250px;
  opacity: 1;
}
.sidebar li .profile-details{
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.sidebar li img{
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 10px;
}
.sidebar li.profile .name,
.sidebar li.profile .job{
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
}

.sidebar li.profile .job{
  font-size: 12px;
}
.sidebar .profile #log_out{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #1d1b31;
  width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 0px;
  transition: all 0.5s ease;
}
.sidebar.open .profile #log_out{
  width: 50px;
  background: none;
}
.home-section{
  position: relative;
  height: 100%;
  color: #002bff;
  top: 0;
  left: 78px;
  width: calc(100% - 78px);
  transition: all 0.5s ease;


}
.sidebar.open ~ .home-section{
  left: 250px;
  width: calc(100% - 250px);
}
.home-section .text{
  display: inline-block;
  color: #25233e;
  font-size: 25px;
  font-weight: 500;
}
@media (max-width: 420px) {
  .sidebar li .tooltip{
    display: none;
  }
}
.picture{
  border-radius: 12px;
  width:385px;
  
}
.picture2{
  position: relative;
  border-radius: 12px;
  margin-left: 170px;
  width: 150px; /* Set a fixed width */
  height: 150px; /* Set a fixed height */
  object-fit: contain; /* Ensures the image covers the entire area without distortion */
  margin-bottom: 350px;
}

.slide.second{
position: relative;
left: 30%;
width: 850px;
height:500px;
padding: 10px;
background-color: #11101D;
box-shadow: rgba(0, 0, 0, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.selectBox.second{
right:330%;
top:50%;
}
.selectBox.second .options-container {
  position: absolute;
 top: 10%;
  background:  #2f3640;
  color: #f5f6fa;
  max-height: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.4s;
  border-radius: 8px;
  overflow: hidden;
  order: 1;
}

.container {
    display: grid;
    height: max-content;
    width: 100%;
    grid-template-columns: 0.2fr 0.2fr 0.2fr 0.2fr;
    grid-template-rows: 0.1fr 0.2fr 0.2fr 0.2fr;
    grid-template-areas:
      "nav nav nav nav"
      "sidebar main main main"
      "content1 content1 content2 content3"
      "footer footer footer  last"
      "copyrt  copyrt  copyrt  copyrt ";
    grid-gap: 0.2rem;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    color: rgba(0, 193, 255,1);
    text-align: center;
    background-color:  #11101D;
  }

  nav {
    background: #11101D;
    left: 50%;
    grid-area: nav;
    border-radius: 12px;
    padding-top: 10px;
    
  }
  #navbarer{
    background: #11101D;
    position:relative;
    left: 40%;
    border-radius: 12px;
    padding-top: 10px;
  }
  main {
    background:#11101D;
    grid-area: main;
    padding-top:10px;
    padding: 10px;
    height:max-content;
    padding-bottom: 15px;
    border-radius:12px;
    margin-right: 5px ;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  }
  #sidebar{
    background: #11101D;
    margin-bottom: 0px;
    grid-area: sidebar;
    display: grid;
    justify-items: center;
    height: fit-content;
    width: max-content;
    border-radius: 12px;
    padding: 1px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  }
  #sidebar2{
    background: #11101D;
    margin-bottom: 0px;
    grid-area: sidebar;
    display: grid;
    justify-items: center;
    height: fit-content;
    width: max-content;
    border-radius: 12px;
    padding: 1px;

  }
  #content1 {
    background: #11101D;
    grid-area: content1;
    border-radius: 12px;
    padding-top: 10px;
    width:max-content;
     padding-left: 25px;
     padding-right: 5px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  }
  
  #content2 {
    background: #11101D;
    grid-area: content2;
    display: grid;
    justify-items: center;
    border-radius:12px;
    padding-top: 10px;
    margin-left:140px;
    width:max-content;
    padding-left: 10px;
    padding-right: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  }
  
  #content3 {
    background: #11101D;
    grid-area: content3;
    border-radius: 12px;
    display: grid;
    justify-items: center;
    width:max-content;
    margin-left:2px;
    padding: 15px;
    padding-top:10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  }
  
  footer {
    background: #11101D;
    grid-area: footer;
    display: grid;
    justify-items: center;
    border-radius:12px;
    margin-right:-150px;
    padding-top: 10px;
    padding-right: 65px;
    width:max-content;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  }
  #last{
    background: #11101D;
    grid-area:last;
    display: grid;
    justify-items: center;
    border-radius: 12px;
    padding-top: 70px;
    margin-right: 0;
    margin-left: 2px;
    padding: 15px;
    height:450px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  }


#copyright2{
  color: #ffffff;
  text-align: flex;
  position: absolute;
  top: 85%;
  left: 50%;
 
}
#copyrighta {
    color: rgba(0, 193, 255,1);
    text-decoration: none;
}
#copyirighta:hover{
    text-decoration: underline;
}

  footer .chart-canvas{
   width:950px;
   height:400px;
  }
 .chart-canvas{
    height:400px;
  }
  

.logo10 a{
    color:rgba(0, 193, 255,1);
    font-size: 35px;
  font-weight: 600;
  text-decoration-line:none;
  }
.logo10 a span{
  color: #E4E9F7;
   transition: all 0.3s ease;
  }
 .logo1{
  width: 50px;
  height: 50px;
 }

	.height {
		height: 10px;
	}
		
	/* Image-container design */
	.image-container {
    min-height: fit-content;
		max-width:fit-content;
		position: relative;
		margin: auto;
	}
		
	.next {
		right: 0;
	}
		
	/* Next and previous icon design */
	.previous,
	.next {
		cursor: pointer;
		position: absolute;
		top: 50%;
		padding: 10px;
		margin-top: -25px;
	}
		
	/* caption decorate */
	.captionText {
		color: #000000;
		font-size: 14px;
		position: absolute;
		padding: 12px 12px;
		bottom: 8px;
		width: 100%;
		text-align: center;
	}
		
	/* Slider image number */
	.slideNumber {
		background-color:  rgba(0, 193, 255,1);
		color: rgb(0, 0, 0);
		border-radius: 25px;
    top: -5px;
		right: 15px;
		opacity: .5;
		margin: 5px;
		width:fit-content;
    padding-left: 5px;
    padding-right: 5px;
    padding-top:0;
    padding-bottom: 10px;
		height: 30px;
		text-align: center;
		font-weight: bold;
		font-size: 24px;
		position: absolute;
	}
	.fa {
		font-size: 32px;
	}
		
	.fa:hover {
		transform: rotate(360deg);
		transition: 1s;
		color: white;
	}
		
	.footerdot {
		cursor: pointer;
		height: 15px;
		width: 15px;
		margin-left:  2px;
    margin-top: 0;
    margin-bottom:0;
		background-color: #5555;
		border-radius: 50%;
		display: inline-block;
		transition: background-color 0.5s ease;
	}
		
.footerdot:hover {
		background-color: rgba(0, 193, 255,1);
	}

.footerdot.active {
		background-color: rgba(0, 193, 255,1);
	}
.selectBox{
 opacity: 1;
 position: relative;
 
}
.chart-canvas{
  border-radius: 12px;
}
.selectBox {
  display: flex;
  width: 400px;
  flex-direction: column;

  

}

.selectBox .options-container {
  background:  #2f3640;
  color: #f5f6fa;
  max-height: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.4s;
  border-radius: 8px;
  overflow: hidden;
  order: 1;
}

.selected2 {
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #f5f6fa;
  position: relative;

  order: 0;
}

.selected2::after {
  content: "";
  background: url("../images/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

  
.selectBox .options-container.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
}

.selectBox .options-container.active + .selected2::after {
  transform: rotateX(180deg);
  top: -6px;
}

.selectBox .options-container::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.selectBox .options-container::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.selectBox .option,
.selected2 {
  padding: 12px 24px;
  cursor: pointer;
}

.selectBox .option:hover {
  background: #414b57;
}

.selectBox label {
  cursor: pointer;
}

.selectBox .option .radio {
  display: none;
}

.selected2 {
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #f5f6fa;
  position: relative;

  order: 0;
}

.selected2::after {
  content: "";
  background: url("../images/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

  
.selectBox .options-container.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
}

.selectBox .options-container.active + .selected2::after {
  transform: rotateX(180deg);
  top: -6px;
}

.selectBox .options-container::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.selectBox .options-container::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.selectBox .option,
.selected2 {
  padding: 12px 24px;
  cursor: pointer;
}


.selected1 {
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #f5f6fa;
  position: relative;

  order: 0;
}

.selected1::after {
  content: "";
  background: url("../images/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

  
.selectBox .options-container.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
}

.selectBox .options-container.active + .selected1::after {
  transform: rotateX(180deg);
  top: -6px;
}

.selectBox .options-container::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.selectBox .options-container::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.selectBox .option,
.selected1 {
  padding: 12px 24px;
  cursor: pointer;
}





.selected3 {
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #f5f6fa;
  position: relative;

  order: 0;
}

.selected3::after {
  content: "";
  background: url("../images/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

  
.selectBox .options-container.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
}

.selectBox .options-container.active + .selected3::after {
  transform: rotateX(180deg);
  top: -6px;
}

.selectBox .options-container::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.selectBox .options-container::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.selectBox .option,
.selected3 {
  padding: 12px 24px;
  cursor: pointer;
}





.selected4{
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #f5f6fa;
  position: relative;

  order: 0;
}

.selected4::after {
  content: "";
  background: url("../images/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

  
.selectBox .options-container.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
}

.selectBox .options-container.active + .selected4::after {
  transform: rotateX(180deg);
  top: -6px;
}

.selectBox .options-container::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.selectBox .options-container::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.selectBox .option,
.selected4 {
  padding: 12px 24px;
  cursor: pointer;
}








/* select-box//*/


.namer2{
  position:absolute;
  left: 74%;
  top:111%;
}
.select-box {
  position: relative;
  display: flex;
  width: 400px;
  flex-direction: column;

}

.select-box .options-containerfooter1 {
  background: #2f3640;;
  color: #f5f6fa;
  max-height: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.4s;
  border-radius: 8px;
  overflow: hidden;

  order: 1;

  position: absolute;
  z-index: 100;
}

.selected {
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #f5f6fa;
  position: relative;

  order: 0;
}

.selected::after {
  content: "";
  background: url("img/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

.select-box .options-containerfooter1.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
  margin-top: 104px;
}

.select-box .options-containerfooter1.active + .selected::after {
  transform: rotateX(180deg);
  top: -6px;
}

.select-box .options-containerfooter1::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.select-box .options-containerfooter1::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.select-box .option,
.selected {
  padding: 12px 24px;
  cursor: pointer;
}

.select-box .option:hover {
  background: #414b57;
}

.select-box label {
  cursor: pointer;
}

.select-box .option .radio {
  display: none;
}
/*selectedfooter2*/
.select-box .options-containerfooter2 {
  background: #2f3640;;
  color: #f5f6fa;
  max-height: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.4s;
  border-radius: 8px;
  overflow: hidden;

  order: 1;

  position: absolute;
  z-index: 100;
}

.selected {
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #f5f6fa;
  position: relative;

  order: 0;
}

.selected::after {
  content: "";
  background: url("img/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

.select-box .options-containerfooter2.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
  margin-top: 104px;
}

.select-box .options-containerfooter2.active + .selected::after {
  transform: rotateX(180deg);
  top: -6px;
}

.select-box .options-containerfooter2::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.select-box .options-containerfooter2::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.select-box .option,
.selected {
  padding: 12px 24px;
  cursor: pointer;
}

.select-box .option:hover {
  background: #414b57;
}

.select-box label {
  cursor: pointer;
}

.select-box .option .radio {
  display: none;
}
/* Searchbox */

.search-box input {
  width: 400px;
  padding: 12px 16px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  position: absolute;
  border-radius: 8px 8px 0 0;
  z-index: 100;
  border: 8px solid #2f3640;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
  position: relative;
}

.search-box input:focus {
  outline: none;
}

.select-box .options-containerfooter1.active ~ .search-box input {
  opacity: 1;
  pointer-events: auto;
}
.select-box .options-containerfooter2.active ~ .search-box input {
  opacity: 1;
  pointer-events: auto;
}






.select-box1 {
  position: relative;
  display: flex;
  width: 400px;
  flex-direction: column;
  left: 0%;
  bottom: -10%;
}

.select-box1 .options-container1 {
  background:#2f3640;
  color: #f5f6fa;
  max-height: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.4s;
  border-radius: 8px;
  overflow: hidden;

  order: 1;

  position: absolute;
  z-index: 100;
}

.selected{
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #f5f6fa;
  position: relative;

  order: 0;
}

.selected::after {
  content: "";
  background: url("img/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

.select-box1 .options-container1.active {
  max-height: 240px;
  opacity:1;
  overflow-y: scroll;
  margin-top: 104px;
}

.select-box1 .options-container1.active + .selected::after {
  transform: rotateX(180deg);
  top: -6px;
}

.select-box1 .options-container1::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.select-box1 .options-container1::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.select-box1 .option,
.selected
 {
  padding: 12px 24px;
  cursor: pointer;
}

.select-box1 .option:hover {
  background: #414b57;
}

.select-box1 label {
  cursor: pointer;
}

.select-box1 .option .radio {
  display: none;
}

/* Searchbox */

.search-box input {
  width: 400px;
  padding: 12px 16px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  position: absolute;
  border-radius: 8px 8px 0 0;
  z-index: 100;
  border: 8px solid #2f3640;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
  position: relative;
}

.search-box input:focus {
  outline: none;
}

.select-box1 .options-container1.active ~ .search-box input {
  opacity: 1;
  pointer-events: auto;
}
/** select-box2*/


.select-box2 {
  position: relative;
  display: flex;
  width: 400px;
  flex-direction: column;
  left: 0%;
  bottom:30%;
}

.select-box2 .options-container2 {
  background: #2f3640;
  color: #f5f6fa;
  max-height: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.4s;
  border-radius: 8px;
  overflow: hidden;

  order: 1;

  position: absolute;
  z-index: 100;
}

.selected {
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #f5f6fa;
  position: relative;

  order: 0;
}

.selected::after {
  content: "";
  background: url("img/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

.select-box2 .options-container2.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
  margin-top: 104px;
}

.select-box2 .options-container2.active + .selected::after {
  transform: rotateX(180deg);
  top: -6px;
}

.select-box2 .options-container2::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.select-box2 .options-container2::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.select-box2 .option,
.selected {
  padding: 12px 24px;
  cursor: pointer;
}

.select-box2 .option:hover {
  background: #414b57;
}

.select-box2 label {
  cursor: pointer;
}

.select-box2 .option .radio {
  display: none;
}

/* Searchbox */

.search-box input {
  width: 400px;
  padding: 12px 16px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  position: absolute;
  border-radius: 8px 8px 0 0;
  z-index: 100;
  border: 8px solid #2f3640;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
  position: relative;
}

.search-box input:focus {
  outline: none;
}

.select-box2 .options-container2.active ~ .search-box input {
  opacity: 1;
  pointer-events: auto;
}
/*footer*/


.selectedfooter1{
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  position:relative;
  color: #f5f6fa;
  order: 0;
}

.selectedfooter1::after {
  content: "";
  background: url("../images/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

  
.selectBox .options-containerfooter1.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
}

.selectBox .options-container.active + .selectedfooter1::after {
  transform: rotateX(180deg);
  top: -6px;
}

.selectBox .options-container::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.selectBox .options-container::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.selectBox .option,
.selectedfooter1 {
  padding: 12px 24px;
  cursor: pointer;
}


/*footer da second*/

.selectedfooter2{
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #f5f6fa;
  position: relative;

  order: 0;
}

.selectedfooter2::after {
  content: "";
  background: url("../images/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

  
.selectBox .options-containerfooter2.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
}

.selectBox .options-containerfooter2.active + .selectedfooter2::after {
  transform: rotateX(180deg);
  top: -6px;
}

.selectBox .options-containerfooter2::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.selectBox .options-containerfooter2::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.selectBox .option,
.selectedfooter2 {
  padding: 12px 24px;
  cursor: pointer;
}


/*selected-gpu*/


.selectedgpu{
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #f5f6fa;
  position: relative;

  order: 0;
}

.selectedgpu::after {
  content: "";
  background: url("../images/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

  
.selectBox .options-container1.active {
  max-height: 240px;
  opacity: 0;
  overflow-y: scroll;
}

.selectBox .options-container1.active + .selectedgpu::after {
  transform: rotateX(180deg);
  top: -6px;
}

.selectBox .options-container1::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.selectBox .options-container1::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.selectBox .option,
.selectedgpu {
  padding: 12px 24px;
  cursor: pointer;
}


/*info*/
.info{
  opacity:0;
}
/*selected-cpu*/

.selectedcpu{
  background: #2f3640;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #f5f6fa;
  position: relative;

  order: 0;
}

.selectedcpu::after {
  content: "";
  background: url("../images/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;

  transition: all 0.4s;
}

  
.selectBox .options-container.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
}

.selectBox .options-container.active + .selectedcpu::after {
  transform: rotateX(180deg);
  top: -6px;
}

.selectBox .options-container::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.selectBox .options-container::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.selectBox .option,
.selectedcpu {
  padding: 12px 24px;
  cursor: pointer;
}

#content2 .chart-canvas{
  position: relative;
  margin-bottom: 10px;
  height: 380px;
  width: 380px;
  
}
#content1 .chart-canvas{
  height: 350px;
  width:580px;
}
main .chart-canvas{
  width: 100%;
  background-color:#11101D;
}
@media only screen and (max-width: 800px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} 
.selectBox.second {
  right:325%;
  top:150%;
  width:250px;
  z-index: 99;

}
  .glow-on-hover {
    border: none;
    width: 100px;
    height: 40px;
    margin-left: 30px;
    outline: none;
    cursor: pointer;
    position: relative;
    top:190%;
    z-index: 99;
    left: -25px;
    border-radius: 10px;
  }

  #sidebarmb,#sidebarram,#sidebarcpu,#sidebargpu,#sidebarlaptop,#sidebarcpu1 {
    position: relative;
    left: -10%;
    padding-left: 50px;
  }
  .slide.second {
    position: relative;
    left: -100%;
    top: 200px;
    width: 325px;
    height: 50px;
    padding: 10px;

  }
  .radio-inputs .radio .name {
    padding: 0.5rem 1rem;
    position: relative;
    margin-right: 10px;
    margin-left: -20px;
  }
  .picture2 {
    position: relative;
    left: -25%;
    top: 10px;
  }
  .logo10{
    position: relative;
    left:-35%;
  }
  #copyright2{
    position: relative;
    top:350px;
    left: -12px;
    font-size: 10px;
  }
  #sidebar h1{
    font-size: medium;
  }
  #sidebar h2{
    font-size: small;
  }
  #sidebar p{
  font-size: smaller;
  }
  #sidebar #cuda{
    position: relative;
    margin-top: 5px;
    font-size: small;

  }
  #label{
    font-size: medium;
  }
  #sidebar #tensor{
    position: relative;
    margin-top: 5px;
    font-size: small;
  }
  main img{
    position: relative;
    top:-30%;
    width:200px;
    height: 200px;
  
  }
  main h2{
    font-size: 27px;
    position: relative;
    top:225%;
    margin-left: 53px;
  }
  #value{
    font-size: 27px;
    position: relative;
    top:209.5%;
    margin-left: 135px;
  }
  #buy{
    position:relative;
    margin-top: 45px;
    
  }
  #buy a{
    position: absolute;
    top:17%;
    z-index: 99;
    left:12%;
    
  }
.slideNumber{
  font-size: 10px;
  height: 15px;
  position: absolute;
  right:0;
}

#sidebar{
  position:relative;
  margin-left: 0;
  width: 97%;
  margin-top: 0;
}

 main{
  position:relative;
  margin-top: 10px;
  width:97%;
  height: 250px;
} 
main .chart-canvas{
  height:200px;
  
}

}

